home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / gmtr.dir / Internal_9_scoreAutostart.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  269 b   |  21 lines

  1. property timeX
  2. global gmObject
  3.  
  4. on beginSprite me
  5.   timeX = the ticks + 300
  6. end
  7.  
  8. on exitFrame me
  9.   if the ticks > timeX then
  10.     autoGo(me)
  11.   end if
  12.   go(the frame)
  13. end
  14.  
  15. on autoGo me
  16.   if gmObject.playMode <> 0 then
  17.     gmObject.whosNext = -1
  18.   end if
  19.   go("play")
  20. end
  21.